home *** CD-ROM | disk | FTP | other *** search
/ MACD 5 / MACD 5.bin / workbench / tools / czesc_1 / cookie / makefile < prev    next >
Makefile  |  1995-04-27  |  402b  |  22 lines

  1. # makefile for karl's PD fortune cookie program
  2. # edited and bugfixed for SAS/C [JöG]
  3.  
  4. all: cookie cookhash
  5.  
  6. onecookie:
  7.     echo "Onecookie won't work with this \
  8.             version of the cookie program. Sorry."
  9.  
  10. cookie: cookie.o
  11.     $(CC) LINK cookie.o
  12.  
  13. cookie.o: cookie.c cookie.h
  14.  
  15. cookhash: cookhash.o
  16.     $(CC) LINK cookhash.o
  17.  
  18. cookhash.o: cookhash.c
  19.  
  20. cookhash.c: cookhash.lex
  21.     flex -t -v cookhash.lex >cookhash.c
  22.